home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemul_tz.readme < prev   
Text File  |  1996-10-11  |  30KB  |  633 lines

  1. Short:    IXemul 44.0 - TZ management files
  2. Author:   various
  3. Uploader: fnf@ninemoons.com
  4. Type:     dev/gcc
  5.  
  6. This is ixemul.library release 44.0, a shared library that makes it possible
  7. to compile and run most Unix programs under AmigaOS with almost no changes.
  8. IXemul is part of the ADE (Amiga Developer's Environment), a community
  9. effort to produce a complete development environment that is stable,
  10. available in source, and completely self-hosting.  See the ADE readme file
  11. at ftp://ftp.ninemoons.com/pub/ade/README for more details about ADE.
  12.  
  13. As of version 43.1, IXemul includes Jeff Shepherd's networking code.  If
  14. ixnet.library (included) is installed then ixemul.library will use the
  15. networking functions from the ixnet.library, instead of the default dummy
  16. implementation.  Ixnet.library works with AS225 and with AmiTCP.  It
  17. supports both clients and daemons.  A program that uses networking functions
  18. is completely shielded from the AS225 and AmiTCP differences by
  19. ixnet.library, which will take care of all the details for you. That means
  20. that there is no longer any need to provide two different binaries, one for
  21. AS225 and one for AmiTCP.  Furthermore, it is relatively easy to add support
  22. for other network packages.
  23.  
  24. The following are the changes made since the 43.1 release:
  25.  
  26.     Kriton Kyrimis updated ixprefs.
  27.     
  28.     David Zaroski updated ixtrace.
  29.     
  30.     Fixed link count for directories. Thanks to Norbert Pueschel.
  31.     
  32.     umask implemented for for open() and mkdir(). Thanks to Norbert
  33.     Pueschel.
  34.     
  35.     Added muFIBB_SET_GID, which will be implemented in the next
  36.     version of MultiUser. The old way of handling setgid was
  37.     confusing and even potentially dangerous.  Thanks to Norbert
  38.     Pueschel.
  39.     
  40.     Added the translation unix sticky bit -> AmigaDOS h bit. This one
  41.     is more for aestaethical reasons, as the h bit is no longer
  42.     supported in 3.x.  Thanks to Norbert Pueschel.
  43.     
  44.     Added a field 'void *u_user;' near the beginning of the user
  45.     struct which everybody is free to (ab)use. It can be handy to
  46.     store task private data in the user struct, at least, I had to
  47.     use it recently.
  48.     
  49.     Added an ix_amiga.h header, which will contain all amiga specific
  50.     functions and macros in ixemul.library and libc.a, together with
  51.     a description.
  52.     
  53.     Profiling has been enhanced. Ixprefs adds a new profiling
  54.     preference: either take samples only while your program is
  55.     running and the PC is within your program, or take samples while
  56.     your program is running and if the PC is outside your program
  57.     code (e.g. in ixemul or in intuition.library), use the last
  58.     function your program entered before calling ixemul or whatever,
  59.     or always take samples, even if other programs are running.
  60.     Again, the last recorded function gets the hit in those cases.
  61.     
  62.     An array of 100 longs to store the A4 register of shared
  63.     libraries has been added to the user struct. This array can be
  64.     easily increased in future releases, should the need arise. The
  65.     first 20 slots are for your own free use, the other slots should
  66.     be registered. See the file REGISTRY in the ixemul source
  67.     distribution for more details.
  68.     
  69.     Fixed yet another path bug. Running a shell script that's placed
  70.     somewhere in your PATH from 'make' failed, unless the filename of
  71.     the script was absolute.
  72.     
  73.     Added vfork_setup_child to libc.a. This is a wrapper intended to
  74.     make life just a little bit easier for those who need to use the
  75.     vfork2()/vfork_resume() trick. It replaces the old
  76.     'ix_resident()/ix_get_vars2()' pair.
  77.     
  78.     Fixed more problems with the routines that start a shell
  79.     script. This time problems with symbolic links have been fixed.
  80.     
  81.     Fixed problems when parsing a pathname of a shell script,
  82.     preventing the execution of that script.
  83.     
  84.     Replaced the stdio-sources by the NetBSD 44.0 versions, which
  85.     incidentally fixed the broken fgetpos function. This change also
  86.     adds printf() and scanf() support for the 'long long' datatype.
  87.     
  88.     Added support for the O_CASE open() flag: this will open an
  89.     existing file only if the filenames match using a case-sensitive
  90.     comparison.
  91.     
  92.     fstat() didn't compensate the file time for the current timezone
  93.     offset.
  94.     
  95.     Ixemul now supports the 68010 CPU. Thanks to Pascal Eeftinck for
  96.     pointing out that the 68010 uses a 68020-like stackframe.
  97.     
  98.     Build the version.[ch] files in the build directory instead of in
  99.     the source directory.
  100.     
  101.     Fixed fchdir().
  102.     
  103.     Changed the machine name as returned by uname() to "m68k". Thanks
  104.     to Lars Hecking for this.
  105.     
  106.     O_ASYNC I/O is now partially supported: select() will test for
  107.     this situation.
  108.     
  109.     /dev/tty is now translated to console:.
  110.     
  111.     Implemented pseudo-terminals support using the FIFO device.
  112.     
  113.     Many, mostly small, changes to become more NetBSD
  114.     compatible. Where possible, I've replaced the old sources with
  115.     the NetBSD 1.1 sources.
  116.     
  117.     The select() function has been improved: it is now much faster
  118.     and works much better.
  119.     
  120.     Using F_SETFL with fcntl() failed if the file wasn't a regular
  121.     file. It now also works for pipes and sockets.
  122.     
  123.     Requesters that are from ixemul.library or ixnet.library now have
  124.     the name of the library as their title, so that you can see that
  125.     they are from the library, and not from the application. Thanks
  126.     to Udo Schnurpfeil for suggesting this.
  127.     
  128.     The tty database functions unfortunately slipped through and
  129.     weren't included with 43.1. They are back in 44.0.
  130.     
  131.     Implemented mmap() and friends. Of course, any mmap feature that
  132.     actually requires a MMU will return an error. But if mmap() is
  133.     used to load a file into memory, then it works fine.
  134.     
  135.     Applied patch from Kamil Iskra to improve ixemul stack extension
  136.     handling.
  137.  
  138.  
  139. The net ixemul library distribution consists of several archives:
  140.  
  141.   ixemul-bin.lha    Utils for gnu/bin, like ixtrace and ixconfig
  142.  
  143.   ixemul-sdk.lha    Files needed to build applications that use
  144.             ixemul.library.
  145.  
  146.   ixemul-doc.lha    Various documentation, such as this file
  147.  
  148.   ixemul-src.lha    Complete source code for ixemul library
  149.  
  150.   ixemul-tz.lha        Pieces for doing TZ (timezone) management
  151.  
  152.   ixemul-CCCF.lha    Specific flavors of the library, where 'CCC'
  153.             is one of 000, 020, 030, or 040, for 68000, 68020,
  154.             68030, and 68040 respectively, and 'F' is either
  155.             'f', 's', or 't' for FPU support or soft floating
  156.             point or a "trace" version (also soft float)
  157.             respectively.
  158.  
  159. For further information consult the NEWS, INSTALL, README and TODO files in
  160. the documentation archive.
  161.  
  162. -Fred Fish  (fnf@ninemoons.com)
  163.  
  164.  
  165. ============================= Archive contents =============================
  166.  
  167. Original  Packed Ratio    Date     Time    Name
  168. -------- ------- ----- --------- --------  -------------
  169.    16108    8939 44.5% 01-Sep-96 23:50:06 +ixtimezone
  170.    35048   18775 46.4% 01-Sep-96 23:51:22 +zic
  171.       73      47 35.6% 01-Sep-96 23:51:58 +Abidjan
  172.      157     125 20.3% 01-Sep-96 23:51:58 +Accra
  173.       74      48 35.1% 01-Sep-96 23:51:58 +Addis_Ababa
  174.      293     238 18.7% 01-Sep-96 23:51:56 +Algiers
  175.       74      48 35.1% 01-Sep-96 23:51:58 +Asmera
  176.       95      68 28.4% 01-Sep-96 23:51:58 +Bamako
  177.       73      50 31.5% 01-Sep-96 23:51:58 +Bangui
  178.      107      77 28.0% 01-Sep-96 23:51:58 +Banjul
  179.       90      64 28.8% 01-Sep-96 23:51:58 +Bissau
  180.       73      49 32.8% 01-Sep-96 23:51:58 +Blantyre
  181.       73      47 35.6% 01-Sep-96 23:51:58 +Brazzaville
  182.       56      30 46.4% 01-Sep-96 23:51:56 +Bujumbura
  183.      942     745 20.9% 01-Sep-96 23:51:58 +Cairo
  184.      191     154 19.3% 01-Sep-96 23:51:58 +Casablanca
  185.       95      71 25.2% 01-Sep-96 23:51:58 +Conakry
  186.       90      64 28.8% 01-Sep-96 23:52:00 +Dakar
  187.       96      72 25.0% 01-Sep-96 23:52:00 +Dar_es_Salaam
  188.       73      51 30.1% 01-Sep-96 23:51:58 +Djibouti
  189.       73      50 31.5% 01-Sep-96 23:51:56 +Douala
  190.      269     219 18.5% 01-Sep-96 23:52:00 +Freetown
  191.       79      52 34.1% 01-Sep-96 23:51:56 +Gaborone
  192.       73      49 32.8% 01-Sep-96 23:52:00 +Harare
  193.      102      78 23.5% 01-Sep-96 23:52:00 +Johannesburg
  194.      109      81 25.6% 01-Sep-96 23:52:00 +Kampala
  195.      262     219 16.4% 01-Sep-96 23:52:00 +Khartoum
  196.       73      47 35.6% 01-Sep-96 23:51:58 +Kigali
  197.       56      29 48.2% 01-Sep-96 23:52:00 +Kinshasa
  198.       73      47 35.6% 01-Sep-96 23:51:58 +Lagos
  199.       73      49 32.8% 01-Sep-96 23:51:58 +Libreville
  200.       56      26 53.5% 01-Sep-96 23:52:00 +Lome
  201.       73      50 31.5% 01-Sep-96 23:51:56 +Luanda
  202.       56      30 46.4% 01-Sep-96 23:52:00 +Lumumbashi
  203.       73      49 32.8% 01-Sep-96 23:52:00 +Lusaka
  204.       90      62 31.1% 01-Sep-96 23:51:58 +Malabo
  205.       73      50 31.5% 01-Sep-96 23:51:58 +Maputo
  206.       96      72 25.0% 01-Sep-96 23:51:58 +Maseru
  207.       73      49 32.8% 01-Sep-96 23:52:00 +Mbabane
  208.       92      68 26.0% 01-Sep-96 23:52:00 +Mogadishu
  209.       90      64 28.8% 01-Sep-96 23:51:58 +Monrovia
  210.      109      81 25.6% 01-Sep-96 23:51:58 +Nairobi
  211.       96      69 28.1% 01-Sep-96 23:51:58 +Ndjamena
  212.       95      70 26.3% 01-Sep-96 23:51:58 +Niamey
  213.       95      67 29.4% 01-Sep-96 23:51:58 +Nouakchott
  214.       73      45 38.3% 01-Sep-96 23:51:56 +Ouagadougou
  215.       90      61 32.2% 01-Sep-96 23:51:56 +Porto-Novo
  216.       73      45 38.3% 01-Sep-96 23:51:58 +Sao_Tome
  217.       73      45 38.3% 01-Sep-96 23:51:58 +Timbuktu
  218.      236     206 12.7% 01-Sep-96 23:51:58 +Tripoli
  219.      695     547 21.2% 01-Sep-96 23:52:00 +Tunis
  220.       97      71 26.8% 01-Sep-96 23:51:58 +Windhoek
  221.      823     656 20.2% 01-Sep-96 23:52:22 +Adak
  222.      826     657 20.4% 01-Sep-96 23:52:22 +Anchorage
  223.       73      51 30.1% 01-Sep-96 23:52:26 +Anguilla
  224.       90      66 26.6% 01-Sep-96 23:52:26 +Antigua
  225.       87      65 25.2% 01-Sep-96 23:52:28 +Aruba
  226.      735     585 20.4% 01-Sep-96 23:52:28 +Asuncion
  227.      823     656 20.2% 01-Sep-96 23:52:22 +Atka
  228.      155     123 20.6% 01-Sep-96 23:52:26 +Barbados
  229.      381     308 19.1% 01-Sep-96 23:52:26 +Belize
  230.       73      49 32.8% 01-Sep-96 23:52:28 +Bogota
  231.      849     675 20.4% 01-Sep-96 23:52:22 +Boise
  232.      436     361 17.2% 01-Sep-96 23:52:28 +Buenos_Aires
  233.       90      69 23.3% 01-Sep-96 23:52:28 +Caracas
  234.       90      66 26.6% 01-Sep-96 23:52:28 +Cayenne
  235.       73      50 31.5% 01-Sep-96 23:52:26 +Cayman
  236.     1262     976 22.6% 01-Sep-96 23:52:22 +Chicago
  237.      129     102 20.9% 01-Sep-96 23:52:26 +Costa_Rica
  238.       87      65 25.2% 01-Sep-96 23:52:28 +Curacao
  239.      860     683 20.5% 01-Sep-96 23:52:22 +Denver
  240.      794     632 20.4% 01-Sep-96 23:52:24 +Detroit
  241.       73      49 32.8% 01-Sep-96 23:52:26 +Dominica
  242.      845     666 21.1% 01-Sep-96 23:52:24 +Edmonton
  243.      118      90 23.7% 01-Sep-96 23:52:26 +El_Salvador
  244.      537     448 16.5% 01-Sep-96 23:52:26 +Ensenada
  245.      269     231 14.1% 01-Sep-96 23:52:24 +Fort_Wayne
  246.      677     528 22.0% 01-Sep-96 23:52:16 +Godthab
  247.      675     540 20.0% 01-Sep-96 23:52:26 +Grand_Turk
  248.       73      50 31.5% 01-Sep-96 23:52:26 +Grenada
  249.       73      49 32.8% 01-Sep-96 23:52:26 +Guadeloupe
  250.      105      84 20.0% 01-Sep-96 23:52:26 +Guatemala
  251.       73      49 32.8% 01-Sep-96 23:52:28 +Guayaquil
  252.       91      68 25.2% 01-Sep-96 23:52:28 +Guyana
  253.     1225     955 22.0% 01-Sep-96 23:52:24 +Halifax
  254.      875     692 20.9% 01-Sep-96 23:52:26 +Havana
  255.      269     231 14.1% 01-Sep-96 23:52:24 +Indianapolis
  256.      532     435 18.2% 01-Sep-96 23:52:24 +Knox
  257.      289     245 15.2% 01-Sep-96 23:52:24 +Marengo
  258.      167     135 19.1% 01-Sep-96 23:52:24 +Vevay
  259.      269     231 14.1% 01-Sep-96 23:52:24 +Indianapolis
  260.      725     574 20.8% 01-Sep-96 23:52:26 +Jamaica
  261.      811     646 20.3% 01-Sep-96 23:52:22 +Juneau
  262.      532     435 18.2% 01-Sep-96 23:52:24 +Knox_IN
  263.       92      70 23.9% 01-Sep-96 23:52:28 +La_Paz
  264.      135     113 16.2% 01-Sep-96 23:52:28 +Lima
  265.     1000     787 21.3% 01-Sep-96 23:52:22 +Los_Angeles
  266.      984     786 20.1% 01-Sep-96 23:52:24 +Louisville
  267.      140     113 19.2% 01-Sep-96 23:52:26 +Managua
  268.      660     527 20.1% 01-Sep-96 23:52:28 +Manaus
  269.       96      73 23.9% 01-Sep-96 23:52:26 +Martinique
  270.      569     467 17.9% 01-Sep-96 23:52:24 +Mazatlan
  271.      802     640 20.1% 01-Sep-96 23:52:24 +Menominee
  272.      582     479 17.6% 01-Sep-96 23:52:24 +Mexico_City
  273.      679     539 20.6% 01-Sep-96 23:52:26 +Miquelon
  274.      411     358 12.8% 01-Sep-96 23:52:28 +Montevideo
  275.     1218     952 21.8% 01-Sep-96 23:52:24 +Montreal
  276.       73      50 31.5% 01-Sep-96 23:52:26 +Montserrat
  277.      825     654 20.7% 01-Sep-96 23:52:26 +Nassau
  278.     1250     966 22.7% 01-Sep-96 23:52:22 +New_York
  279.      823     660 19.8% 01-Sep-96 23:52:22 +Nome
  280.      660     530 19.6% 01-Sep-96 23:52:28 +Noronha
  281.       73      49 32.8% 01-Sep-96 23:52:26 +Panama
  282.      121      88 27.2% 01-Sep-96 23:52:28 +Paramaribo
  283.      120      96 20.0% 01-Sep-96 23:52:22 +Phoenix
  284.      649     529 18.4% 01-Sep-96 23:52:26 +Port-au-Prince
  285.       73      48 34.2% 01-Sep-96 23:52:28 +Port_of_Spain
  286.      660     528 20.0% 01-Sep-96 23:52:28 +Porto_Acre
  287.       78      55 29.4% 01-Sep-96 23:52:26 +Puerto_Rico
  288.      380     304 20.0% 01-Sep-96 23:52:24 +Regina
  289.      859     684 20.3% 01-Sep-96 23:52:28 +Santiago
  290.      189     143 24.3% 01-Sep-96 23:52:26 +Santo_Domingo
  291.      720     570 20.8% 01-Sep-96 23:52:28 +Sao_Paulo
  292.      718     547 23.8% 01-Sep-96 23:52:16 +Scoresbysund
  293.      860     683 20.5% 01-Sep-96 23:52:22 +Shiprock
  294.     1312    1041 20.6% 01-Sep-96 23:52:24 +St_Johns
  295.       73      49 32.8% 01-Sep-96 23:52:26 +St_Kitts
  296.       73      50 31.5% 01-Sep-96 23:52:26 +St_Lucia
  297.       73      51 30.1% 01-Sep-96 23:52:26 +St_Thomas
  298.       73      49 32.8% 01-Sep-96 23:52:26 +St_Vincent
  299.      105      84 20.0% 01-Sep-96 23:52:26 +Tegucigalpa
  300.       73      50 31.5% 01-Sep-96 23:52:16 +Thule
  301.     1005     797 20.6% 01-Sep-96 23:52:24 +Tijuana
  302.       73      51 30.1% 01-Sep-96 23:52:26 +Tortola
  303.     1008     791 21.5% 01-Sep-96 23:52:24 +Vancouver
  304.       73      51 30.1% 01-Sep-96 23:52:26 +Virgin
  305.      707     561 20.6% 01-Sep-96 23:52:24 +Whitehorse
  306.      988     775 21.5% 01-Sep-96 23:52:24 +Winnipeg
  307.      806     633 21.4% 01-Sep-96 23:52:22 +Yakutat
  308.       73      47 35.6% 01-Sep-96 23:52:04 +Aden
  309.      686     534 22.1% 01-Sep-96 23:52:02 +Alma-Ata
  310.      692     544 21.3% 01-Sep-96 23:52:02 +Amman
  311.      705     547 22.4% 01-Sep-96 23:52:20 +Anadyr
  312.      219     179 18.2% 01-Sep-96 23:52:04 +Ashkhabad
  313.      661     520 21.3% 01-Sep-96 23:52:02 +Baghdad
  314.       90      63 30.0% 01-Sep-96 23:52:00 +Bahrain
  315.      240     196 18.3% 01-Sep-96 23:52:00 +Baku
  316.       73      51 30.1% 01-Sep-96 23:52:04 +Bangkok
  317.      772     604 21.7% 01-Sep-96 23:52:02 +Beirut
  318.      716     562 21.5% 01-Sep-96 23:52:02 +Bishkek
  319.       86      61 29.0% 01-Sep-96 23:52:00 +Brunei
  320.      108      82 24.0% 01-Sep-96 23:52:02 +Calcutta
  321.      162     132 18.5% 01-Sep-96 23:52:00 +Chungking
  322.      109      79 27.5% 01-Sep-96 23:52:02 +Colombo
  323.      112      87 22.3% 01-Sep-96 23:52:00 +Dacca
  324.      852     673 21.0% 01-Sep-96 23:52:04 +Damascus
  325.       73      50 31.5% 01-Sep-96 23:52:04 +Dubai
  326.      219     181 17.3% 01-Sep-96 23:52:04 +Dushanbe
  327.      366     304 16.9% 01-Sep-96 23:52:02 +Gaza
  328.      189     155 17.9% 01-Sep-96 23:52:00 +Harbin
  329.      426     357 16.1% 01-Sep-96 23:52:00 +Hong_Kong
  330.      705     548 22.2% 01-Sep-96 23:52:20 +Irkutsk
  331.      983     781 20.5% 01-Sep-96 23:52:22 +Istanbul
  332.      139     116 16.5% 01-Sep-96 23:52:02 +Jakarta
  333.       95      73 23.1% 01-Sep-96 23:52:02 +Jayapura
  334.      426     356 16.4% 01-Sep-96 23:52:02 +Jerusalem
  335.       73      46 36.9% 01-Sep-96 23:52:00 +Kabul
  336.      705     548 22.2% 01-Sep-96 23:52:20 +Kamchatka
  337.      108      85 21.2% 01-Sep-96 23:52:02 +Karachi
  338.      175     142 18.8% 01-Sep-96 23:52:00 +Kashgar
  339.       90      67 25.5% 01-Sep-96 23:52:02 +Katmandu
  340.      134     103 23.1% 01-Sep-96 23:52:02 +Kuala_Lumpur
  341.       73      49 32.8% 01-Sep-96 23:52:02 +Kuwait
  342.      285     247 13.3% 01-Sep-96 23:52:00 +Macao
  343.      705     548 22.2% 01-Sep-96 23:52:20 +Magadan
  344.      120      95 20.8% 01-Sep-96 23:52:02 +Manila
  345.       73      48 34.2% 01-Sep-96 23:52:02 +Muscat
  346.      732     572 21.8% 01-Sep-96 23:52:00 +Nicosia
  347.      705     562 20.2% 01-Sep-96 23:52:20 +Novosibirsk
  348.      705     549 22.1% 01-Sep-96 23:52:20 +Omsk
  349.      108      82 24.0% 01-Sep-96 23:52:00 +Phnom_Penh
  350.       97      75 22.6% 01-Sep-96 23:52:02 +Pyongyang
  351.       90      64 28.8% 01-Sep-96 23:52:02 +Qatar
  352.       95      73 23.1% 01-Sep-96 23:52:00 +Rangoon
  353.       73      49 32.8% 01-Sep-96 23:52:02 +Riyadh
  354.     3655    2177 40.4% 01-Sep-96 23:52:32 +Riyadh87
  355.     3580    2169 39.4% 01-Sep-96 23:52:32 +Riyadh88
  356.     3580    2182 39.0% 01-Sep-96 23:52:32 +Riyadh89
  357.      108      79 26.8% 01-Sep-96 23:52:04 +Saigon
  358.      152     127 16.4% 01-Sep-96 23:52:02 +Seoul
  359.      178     141 20.7% 01-Sep-96 23:52:00 +Shanghai
  360.      134     103 23.1% 01-Sep-96 23:52:02 +Singapore
  361.      268     227 15.2% 01-Sep-96 23:52:00 +Taipei
  362.      240     193 19.5% 01-Sep-96 23:52:04 +Tashkent
  363.      272     229 15.8% 01-Sep-96 23:52:02 +Tbilisi
  364.      166     129 22.2% 01-Sep-96 23:52:02 +Tehran
  365.      426     356 16.4% 01-Sep-96 23:52:02 +Tel_Aviv
  366.       90      63 30.0% 01-Sep-96 23:52:00 +Thimbu
  367.       56      29 48.2% 01-Sep-96 23:52:02 +Tokyo
  368.      705     549 22.1% 01-Sep-96 23:52:20 +Tomsk
  369.      112      84 25.0% 01-Sep-96 23:52:02 +Ujung_Pandang
  370.      668     524 21.5% 01-Sep-96 23:52:02 +Ulan_Bator
  371.      162     131 19.1% 01-Sep-96 23:52:00 +Urumqi
  372.      108      81 25.0% 01-Sep-96 23:52:02 +Vientiane
  373.      705     546 22.5% 01-Sep-96 23:52:20 +Vladivostok
  374.      705     548 22.2% 01-Sep-96 23:52:20 +Yakutsk
  375.      729     557 23.5% 01-Sep-96 23:52:20 +Yekaterinburg
  376.      684     533 22.0% 01-Sep-96 23:52:00 +Yerevan
  377.     1189     927 22.0% 01-Sep-96 23:52:18 +Azores
  378.      725     572 21.1% 01-Sep-96 23:52:26 +Bermuda
  379.      702     540 23.0% 01-Sep-96 23:52:20 +Canary
  380.      113      86 23.8% 01-Sep-96 23:51:56 +Cape_Verde
  381.      667     514 22.9% 01-Sep-96 23:52:16 +Faeroe
  382.       56      30 46.4% 01-Sep-96 23:52:18 +Jan_Mayen
  383.     1269     980 22.7% 01-Sep-96 23:52:18 +Madeira
  384.      428     353 17.5% 01-Sep-96 23:52:16 +Reykjavik
  385.       56      31 44.6% 01-Sep-96 23:52:28 +South_Georgia
  386.       73      45 38.3% 01-Sep-96 23:51:58 +St_Helena
  387.      737     583 20.8% 01-Sep-96 23:52:28 +Stanley
  388.      785     598 23.8% 01-Sep-96 23:52:12 +ACT
  389.      785     602 23.3% 01-Sep-96 23:52:10 +Adelaide
  390.      160     124 22.5% 01-Sep-96 23:52:04 +Brisbane
  391.      785     605 22.9% 01-Sep-96 23:52:12 +Broken_Hill
  392.      785     598 23.8% 01-Sep-96 23:52:12 +Canberra
  393.      104      85 18.2% 01-Sep-96 23:52:04 +Darwin
  394.      825     624 24.3% 01-Sep-96 23:52:10 +Hobart
  395.      663     520 21.5% 01-Sep-96 23:52:12 +LHI
  396.      663     520 21.5% 01-Sep-96 23:52:12 +Lord_Howe
  397.      785     598 23.8% 01-Sep-96 23:52:10 +Melbourne
  398.      104      85 18.2% 01-Sep-96 23:52:04 +North
  399.      785     598 23.8% 01-Sep-96 23:52:12 +NSW
  400.      150     117 22.0% 01-Sep-96 23:52:04 +Perth
  401.      160     124 22.5% 01-Sep-96 23:52:04 +Queensland
  402.      785     602 23.3% 01-Sep-96 23:52:10 +South
  403.      785     598 23.8% 01-Sep-96 23:52:12 +Sydney
  404.      825     624 24.3% 01-Sep-96 23:52:10 +Tasmania
  405.      785     598 23.8% 01-Sep-96 23:52:10 +Victoria
  406.      150     117 22.0% 01-Sep-96 23:52:04 +West
  407.      785     605 22.9% 01-Sep-96 23:52:12 +Yancowinna
  408.      660     528 20.0% 01-Sep-96 23:52:28 +Acre
  409.      660     530 19.6% 01-Sep-96 23:52:28 +DeNoronha
  410.      720     570 20.8% 01-Sep-96 23:52:28 +East
  411.      660     527 20.1% 01-Sep-96 23:52:28 +West
  412.     1225     955 22.0% 01-Sep-96 23:52:24 +Atlantic
  413.      988     775 21.5% 01-Sep-96 23:52:24 +Central
  414.      380     304 20.0% 01-Sep-96 23:52:24 +East-Saskatchewan
  415.     1218     952 21.8% 01-Sep-96 23:52:24 +Eastern
  416.      845     666 21.1% 01-Sep-96 23:52:24 +Mountain
  417.     1312    1041 20.6% 01-Sep-96 23:52:24 +Newfoundland
  418.     1008     791 21.5% 01-Sep-96 23:52:24 +Pacific
  419.      380     304 20.0% 01-Sep-96 23:52:24 +Saskatchewan
  420.      707     561 20.6% 01-Sep-96 23:52:24 +Yukon
  421.      778     595 23.5% 01-Sep-96 23:52:14 +CET
  422.      859     684 20.3% 01-Sep-96 23:52:28 +Continental
  423.      794     630 20.6% 01-Sep-96 23:52:28 +EasterIsland
  424.     1262     976 22.6% 01-Sep-96 23:52:22 +CST6CDT
  425.      875     692 20.9% 01-Sep-96 23:52:26 +Cuba
  426.      682     525 23.0% 01-Sep-96 23:52:14 +EET
  427.      942     745 20.9% 01-Sep-96 23:51:58 +Egypt
  428.     1267     983 22.4% 01-Sep-96 23:52:14 +Eire
  429.      269     231 14.1% 01-Sep-96 23:52:24 +EST
  430.     1250     966 22.7% 01-Sep-96 23:52:22 +EST5EDT
  431.       56      26 53.5% 01-Sep-96 23:52:28 +GMT
  432.       56      26 53.5% 01-Sep-96 23:52:28 +GMT+0
  433.       58      33 43.1% 01-Sep-96 23:52:30 +GMT+1
  434.       59      35 40.6% 01-Sep-96 23:52:30 +GMT+10
  435.       59      36 38.9% 01-Sep-96 23:52:30 +GMT+11
  436.       59      35 40.6% 01-Sep-96 23:52:30 +GMT+12
  437.       58      36 37.9% 01-Sep-96 23:52:30 +GMT+2
  438.       58      36 37.9% 01-Sep-96 23:52:30 +GMT+3
  439.       58      35 39.6% 01-Sep-96 23:52:30 +GMT+4
  440.       58      35 39.6% 01-Sep-96 23:52:30 +GMT+5
  441.       58      35 39.6% 01-Sep-96 23:52:30 +GMT+6
  442.       58      35 39.6% 01-Sep-96 23:52:30 +GMT+7
  443.       58      35 39.6% 01-Sep-96 23:52:30 +GMT+8
  444.       58      35 39.6% 01-Sep-96 23:52:30 +GMT+9
  445.       56      26 53.5% 01-Sep-96 23:52:28 +GMT-0
  446.       58      34 41.3% 01-Sep-96 23:52:30 +GMT-1
  447.       59      37 37.2% 01-Sep-96 23:52:28 +GMT-10
  448.       59      36 38.9% 01-Sep-96 23:52:28 +GMT-11
  449.       59      36 38.9% 01-Sep-96 23:52:28 +GMT-12
  450.       59      37 37.2% 01-Sep-96 23:52:28 +GMT-13
  451.       59      37 37.2% 01-Sep-96 23:52:28 +GMT-14
  452.       58      34 41.3% 01-Sep-96 23:52:30 +GMT-2
  453.       58      34 41.3% 01-Sep-96 23:52:30 +GMT-3
  454.       58      33 43.1% 01-Sep-96 23:52:30 +GMT-4
  455.       58      33 43.1% 01-Sep-96 23:52:30 +GMT-5
  456.       58      31 46.5% 01-Sep-96 23:52:30 +GMT-6
  457.       58      33 43.1% 01-Sep-96 23:52:30 +GMT-7
  458.       58      34 41.3% 01-Sep-96 23:52:30 +GMT-8
  459.       58      34 41.3% 01-Sep-96 23:52:30 +GMT-9
  460.       56      26 53.5% 01-Sep-96 23:52:28 +GMT0
  461.       56      26 53.5% 01-Sep-96 23:52:28 +Greenwich
  462.       56      26 53.5% 01-Sep-96 23:52:28 +UCT
  463.       56      26 53.5% 01-Sep-96 23:52:28 +Universal
  464.       56      26 53.5% 01-Sep-96 23:52:28 +UTC
  465.       56      26 53.5% 01-Sep-96 23:52:28 +Zulu
  466.     1059     808 23.7% 01-Sep-96 23:52:18 +Amsterdam
  467.      627     485 22.6% 01-Sep-96 23:52:14 +Andorra
  468.      829     651 21.4% 01-Sep-96 23:52:16 +Athens
  469.     1337    1042 22.0% 01-Sep-96 23:52:14 +Belfast
  470.      709     541 23.6% 01-Sep-96 23:52:22 +Belgrade
  471.      864     669 22.5% 01-Sep-96 23:52:16 +Berlin
  472.      829     629 24.1% 01-Sep-96 23:52:16 +Bratislava
  473.     1091     837 23.2% 01-Sep-96 23:52:14 +Brussels
  474.      775     607 21.6% 01-Sep-96 23:52:18 +Bucharest
  475.      874     693 20.7% 01-Sep-96 23:52:16 +Budapest
  476.      712     556 21.9% 01-Sep-96 23:52:18 +Chisinau
  477.      769     589 23.4% 01-Sep-96 23:52:16 +Copenhagen
  478.     1267     983 22.4% 01-Sep-96 23:52:14 +Dublin
  479.     1101     863 21.6% 01-Sep-96 23:52:16 +Gibraltar
  480.      685     532 22.3% 01-Sep-96 23:52:16 +Helsinki
  481.      983     781 20.5% 01-Sep-96 23:52:22 +Istanbul
  482.      813     632 22.2% 01-Sep-96 23:52:22 +Kiev
  483.      705     549 22.1% 01-Sep-96 23:52:20 +Kuybyshev
  484.     1274     995 21.8% 01-Sep-96 23:52:18 +Lisbon
  485.      709     541 23.6% 01-Sep-96 23:52:20 +Ljubljana
  486.     1317    1021 22.4% 01-Sep-96 23:52:14 +London
  487.     1114     858 22.9% 01-Sep-96 23:52:18 +Luxembourg
  488.      956     754 21.1% 01-Sep-96 23:52:20 +Madrid
  489.      944     751 20.4% 01-Sep-96 23:52:18 +Malta
  490.      813     642 21.0% 01-Sep-96 23:52:14 +Minsk
  491.     1089     831 23.6% 01-Sep-96 23:52:18 +Monaco
  492.      818     648 20.7% 01-Sep-96 23:52:20 +Moscow
  493.      829     640 22.7% 01-Sep-96 23:52:18 +Oslo
  494.     1112     848 23.7% 01-Sep-96 23:52:16 +Paris
  495.      829     629 24.1% 01-Sep-96 23:52:16 +Prague
  496.      840     644 23.3% 01-Sep-96 23:52:18 +Riga
  497.      949     754 20.5% 01-Sep-96 23:52:16 +Rome
  498.      949     754 20.5% 01-Sep-96 23:52:16 +San_Marino
  499.      709     541 23.6% 01-Sep-96 23:52:14 +Sarajevo
  500.      800     636 20.5% 01-Sep-96 23:52:22 +Simferopol
  501.      709     541 23.6% 01-Sep-96 23:52:18 +Skopje
  502.      736     561 23.7% 01-Sep-96 23:52:16 +Sofia
  503.      691     528 23.5% 01-Sep-96 23:52:22 +Stockholm
  504.      816     628 23.0% 01-Sep-96 23:52:16 +Tallinn
  505.      765     599 21.6% 01-Sep-96 23:52:14 +Tirane
  506.      650     505 22.3% 01-Sep-96 23:52:18 +Vaduz
  507.      949     754 20.5% 01-Sep-96 23:52:16 +Vatican
  508.      809     617 23.7% 01-Sep-96 23:52:14 +Vienna
  509.      819     629 23.1% 01-Sep-96 23:52:18 +Vilnius
  510.      969     753 22.2% 01-Sep-96 23:52:18 +Warsaw
  511.      709     541 23.6% 01-Sep-96 23:52:16 +Zagreb
  512.      688     537 21.9% 01-Sep-96 23:52:22 +Zurich
  513.     1317    1021 22.4% 01-Sep-96 23:52:14 +GB
  514.       56      26 53.5% 01-Sep-96 23:52:28 +GMT
  515.       56      26 53.5% 01-Sep-96 23:52:28 +GMT+0
  516.       56      26 53.5% 01-Sep-96 23:52:28 +GMT-0
  517.       56      26 53.5% 01-Sep-96 23:52:28 +GMT0
  518.       56      26 53.5% 01-Sep-96 23:52:28 +Greenwich
  519.      426     357 16.1% 01-Sep-96 23:52:00 +Hongkong
  520.      113      88 22.1% 01-Sep-96 23:52:22 +HST
  521.      428     353 17.5% 01-Sep-96 23:52:16 +Iceland
  522.      104      74 28.8% 01-Sep-96 23:51:58 +Antananarivo
  523.       56      29 48.2% 01-Sep-96 23:52:00 +Chagos
  524.       56      29 48.2% 01-Sep-96 23:52:12 +Christmas
  525.       56      29 48.2% 01-Sep-96 23:52:12 +Cocos
  526.       73      50 31.5% 01-Sep-96 23:51:58 +Comoro
  527.       73      48 34.2% 01-Sep-96 23:52:00 +Mahe
  528.       73      49 32.8% 01-Sep-96 23:52:02 +Maldives
  529.       73      47 35.6% 01-Sep-96 23:51:58 +Mauritius
  530.       73      49 32.8% 01-Sep-96 23:51:58 +Mayotte
  531.       73      45 38.3% 01-Sep-96 23:51:58 +Reunion
  532.      166     129 22.2% 01-Sep-96 23:52:02 +Iran
  533.      426     356 16.4% 01-Sep-96 23:52:02 +Israel
  534.      725     574 20.8% 01-Sep-96 23:52:26 +Jamaica
  535.       56      29 48.2% 01-Sep-96 23:52:02 +Japan
  536.       92      68 26.0% 01-Sep-96 23:52:12 +Kwajalein
  537.      236     206 12.7% 01-Sep-96 23:51:58 +Libya
  538.      778     595 23.5% 01-Sep-96 23:52:14 +MET
  539.     1005     797 20.6% 01-Sep-96 23:52:24 +BajaNorte
  540.      569     467 17.9% 01-Sep-96 23:52:24 +BajaSur
  541.      582     479 17.6% 01-Sep-96 23:52:24 +General
  542.     3655    2177 40.4% 01-Sep-96 23:52:32 +Riyadh87
  543.     3580    2169 39.4% 01-Sep-96 23:52:32 +Riyadh88
  544.     3580    2182 39.0% 01-Sep-96 23:52:32 +Riyadh89
  545.      120      96 20.0% 01-Sep-96 23:52:22 +MST
  546.      860     683 20.5% 01-Sep-96 23:52:22 +MST7MDT
  547.      860     683 20.5% 01-Sep-96 23:52:22 +Navajo
  548.      870     682 21.6% 01-Sep-96 23:52:12 +NZ
  549.      857     671 21.7% 01-Sep-96 23:52:12 +NZ-CHAT
  550.       86      59 31.3% 01-Sep-96 23:52:14 +Apia
  551.      870     682 21.6% 01-Sep-96 23:52:12 +Auckland
  552.      857     671 21.7% 01-Sep-96 23:52:12 +Chatham
  553.      794     626 21.1% 01-Sep-96 23:52:28 +Easter
  554.       74      50 32.4% 01-Sep-96 23:52:14 +Efate
  555.       90      66 26.6% 01-Sep-96 23:52:12 +Enderbury
  556.       56      29 48.2% 01-Sep-96 23:52:14 +Fakaofo
  557.       74      49 33.7% 01-Sep-96 23:52:12 +Fiji
  558.       57      30 47.3% 01-Sep-96 23:52:14 +Funafuti
  559.       90      66 26.6% 01-Sep-96 23:52:28 +Galapagos
  560.       73      48 34.2% 01-Sep-96 23:52:12 +Gambier
  561.       74      49 33.7% 01-Sep-96 23:52:14 +Guadalcanal
  562.       56      30 46.4% 01-Sep-96 23:52:12 +Guam
  563.      113      88 22.1% 01-Sep-96 23:52:22 +Honolulu
  564.       56      30 46.4% 01-Sep-96 23:52:12 +Johnston
  565.       90      65 27.7% 01-Sep-96 23:52:12 +Kiritimati
  566.       75      49 34.6% 01-Sep-96 23:52:12 +Kosrae
  567.       92      68 26.0% 01-Sep-96 23:52:12 +Kwajalein
  568.       75      49 34.6% 01-Sep-96 23:52:12 +Majuro
  569.       73      48 34.2% 01-Sep-96 23:52:12 +Marquesas
  570.       90      56 37.7% 01-Sep-96 23:52:22 +Midway
  571.      113      87 23.0% 01-Sep-96 23:52:12 +Nauru
  572.       86      63 26.7% 01-Sep-96 23:52:12 +Niue
  573.       74      51 31.0% 01-Sep-96 23:52:12 +Norfolk
  574.      120      90 25.0% 01-Sep-96 23:52:12 +Noumea
  575.      120      84 30.0% 01-Sep-96 23:52:12 +Pago_Pago
  576.       56      30 46.4% 01-Sep-96 23:52:12 +Palau
  577.       56      32 42.8% 01-Sep-96 23:52:12 +Pitcairn
  578.       57      30 47.3% 01-Sep-96 23:52:12 +Ponape
  579.       56      30 46.4% 01-Sep-96 23:52:12 +Port_Moresby
  580.      677     539 20.3% 01-Sep-96 23:52:12 +Rarotonga
  581.       73      49 32.8% 01-Sep-96 23:52:12 +Saipan
  582.      120      84 30.0% 01-Sep-96 23:52:12 +Samoa
  583.       73      48 34.2% 01-Sep-96 23:52:12 +Tahiti
  584.       57      30 47.3% 01-Sep-96 23:52:12 +Tarawa
  585.       73      50 31.5% 01-Sep-96 23:52:14 +Tongatapu
  586.       74      50 32.4% 01-Sep-96 23:52:12 +Truk
  587.       57      30 47.3% 01-Sep-96 23:52:14 +Wake
  588.       57      30 47.3% 01-Sep-96 23:52:14 +Wallis
  589.       73      49 32.8% 01-Sep-96 23:52:12 +Yap
  590.      969     753 22.2% 01-Sep-96 23:52:18 +Poland
  591.     1274     995 21.8% 01-Sep-96 23:52:18 +Portugal
  592.     1250     966 22.7% 01-Sep-96 23:52:22 +posixrules
  593.      178     141 20.7% 01-Sep-96 23:52:00 +PRC
  594.     1000     787 21.3% 01-Sep-96 23:52:22 +PST8PDT
  595.      268     227 15.2% 01-Sep-96 23:52:00 +ROC
  596.      152     127 16.4% 01-Sep-96 23:52:02 +ROK
  597.      134     103 23.1% 01-Sep-96 23:52:02 +Singapore
  598.       56      31 44.6% 01-Sep-96 23:52:30 +AST4
  599.     1428    1095 23.3% 01-Sep-96 23:52:30 +AST4ADT
  600.       56      31 44.6% 01-Sep-96 23:52:32 +CST6
  601.     1428    1091 23.5% 01-Sep-96 23:52:30 +CST6CDT
  602.       56      31 44.6% 01-Sep-96 23:52:32 +EST5
  603.     1428    1095 23.3% 01-Sep-96 23:52:30 +EST5EDT
  604.       56      30 46.4% 01-Sep-96 23:52:32 +HST10
  605.       56      31 44.6% 01-Sep-96 23:52:32 +MST7
  606.     1428    1094 23.3% 01-Sep-96 23:52:30 +MST7MDT
  607.       56      31 44.6% 01-Sep-96 23:52:32 +PST8
  608.     1428    1098 23.1% 01-Sep-96 23:52:30 +PST8PDT
  609.       56      31 44.6% 01-Sep-96 23:52:32 +YST9
  610.     1428    1095 23.3% 01-Sep-96 23:52:30 +YST9YDT
  611.      983     781 20.5% 01-Sep-96 23:52:22 +Turkey
  612.       56      26 53.5% 01-Sep-96 23:52:28 +UCT
  613.       56      26 53.5% 01-Sep-96 23:52:28 +Universal
  614.      826     660 20.0% 01-Sep-96 23:52:22 +Alaska
  615.      823     660 19.8% 01-Sep-96 23:52:22 +Aleutian
  616.      120      96 20.0% 01-Sep-96 23:52:22 +Arizona
  617.     1262     976 22.6% 01-Sep-96 23:52:22 +Central
  618.      269     231 14.1% 01-Sep-96 23:52:24 +East-Indiana
  619.     1250     966 22.7% 01-Sep-96 23:52:22 +Eastern
  620.      113      88 22.1% 01-Sep-96 23:52:22 +Hawaii
  621.      532     435 18.2% 01-Sep-96 23:52:24 +Indiana-Starke
  622.      794     632 20.4% 01-Sep-96 23:52:24 +Michigan
  623.      860     683 20.5% 01-Sep-96 23:52:22 +Mountain
  624.     1000     787 21.3% 01-Sep-96 23:52:22 +Pacific
  625.     1000     787 21.3% 01-Sep-96 23:52:22 +Pacific-New
  626.      120      84 30.0% 01-Sep-96 23:52:12 +Samoa
  627.       56      26 53.5% 01-Sep-96 23:52:28 +UTC
  628.      818     648 20.7% 01-Sep-96 23:52:20 +W-SU
  629.      682     526 22.8% 01-Sep-96 23:52:14 +WET
  630.       56      26 53.5% 01-Sep-96 23:52:28 +Zulu
  631. -------- ------- ----- --------- --------
  632.   266172  190830 28.3% 10-Sep-96 23:44:00   462 files
  633.